home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
IRIX 6.3 Development Libraries
/
SGI IRIX 6.3 Development Libraries.iso
/
dist6.3
/
ViewKit_dev.idb
/
usr
/
share
/
src
/
ViewKit
/
Components
/
CBrowser
/
Area.h.z
/
Area.h
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-09-20
|
332 b
|
24 lines
#ifndef _C_AREA_
#define _C_AREA_
#include <Vk/VkComponent.h>
class Carea : public VkComponent {
public:
Carea(const char *name, Widget parent);
~Carea();
virtual const char* className();
Widget getDisplayWidget() { return display; }
void setLabel(char *str);
protected:
Widget label, frame, display;
};
#endif